home *** CD-ROM | disk | FTP | other *** search
/ MacHack 2000 / MacHack 2000.toast / pc / The Hacks / Softshoe / Lisa's Mac Parts / Files / Errors / NotAMacintoshDisk.h < prev    next >
Text File  |  2000-06-23  |  300b  |  21 lines

  1. // NotAMacintoshDisk.h
  2.  
  3. #ifndef NotAMacintoshDisk_h
  4. #define NotAMacintoshDisk_h
  5.  
  6. #ifndef MountError_h
  7. #include "MountError.h"
  8. #endif
  9.  
  10. class NotAMacintoshDisk: public MountError
  11.   {
  12.     public:
  13.         NotAMacintoshDisk( OSErr error )
  14.           : MountError( error )
  15.           {}
  16.         
  17.         // used for noMacDskErr
  18.   };
  19.  
  20. #endif
  21.